body > *:not(.navbar) {
      zoom: 70%;
    }
    
    /* Annuler le zoom pour la barre de navigation */
    .navbar {
      margin: 0 0 20px 0; /* Marge en bas de 20px */
      padding: 0;
    }

    :root {
      --bg-color: #1a1a1a;
      --text-color: #f8f9fa;
      --link-color: #00FF43;
      --border-color: #00FF43;
      --panel-bg: #2d2d2d;
      --nav-bg: #2d2d2d;
      --nav-text: #f8f9fa;
      --nav-hover: #3d3d3d;
    }

    body {
      margin: 0;
      padding: 0;
      background-color: var(--bg-color);
      color: var(--text-color);
      font-family: 'Press Start 2P', monospace;
      line-height: 1.6;
      transition: background-color 0.3s ease, color 0.3s ease;
      min-height: 100vh;
      padding-top: 30px; /* Espace réduit au-dessus du contenu */
    }

    .page {
      max-width: 1200px;
      margin: 0 auto 0;
      padding: 24px;
      padding-top: 0;
    }

    .frame {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .panel {
      border: 3px solid var(--border-color);
      padding: 20px;
      position: relative;
      min-height: 520px;
      background-color: var(--panel-bg);
      box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .panel-title {
      position: absolute;
      top: -12px;
      left: 20px;
      background: var(--bg-color);
      padding: 0 10px;
      font-size: 12px;
      color: var(--text-color);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .art {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .art img {
      image-rendering: pixelated;
      max-width: 280px;
      width: 100%;
    }

    h1, h2 {
      font-size: 18px;
      margin: 0 0 15px 0;
      color: var(--text-color);
      text-transform: uppercase;
    }

    p {
      font-size: 12px;
      line-height: 1.8;
      margin: 0 0 15px 0;
      color: var(--text-color);
    }

    .section {
      margin-bottom: 16px;
    }

    .label {
      font-weight: 700;
    }

    a {
      color: var(--link-color);
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
    }

    a:hover {
      color: var(--text-color);
      text-decoration: none;
    }
    
    a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -2px;
      left: 0;
      background-color: var(--link-color);
      transition: width 0.3s ease;
    }
    
    a:hover::after {
      width: 100%;
    }

    .footer {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
      padding-top: 10px;
      border-top: 2px solid var(--border-color);
      font-size: 10px;
      color: var(--text-color);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Responsive Design complet */

    /* Mobile - 320px à 480px */
    @media (max-width: 480px) {
        body > *:not(.navbar) {
            zoom: 85%;
        }
        
        .navbar {
            margin: 0 0 15px 0;
        }
        
        body {
            padding-top: 25px;
        }
        
        .page {
            padding: 12px;
        }
        
        .frame {
            grid-template-columns: 1fr;
            gap: 12px;
        }
        
        .panel {
            min-height: auto;
            padding: 12px;
        }
        
        .panel-title {
            font-size: 9px;
            top: -8px;
            left: 12px;
        }
        
        .art img {
            max-width: 150px;
        }
        
        h1, h2 {
            font-size: 14px;
            margin: 0 0 12px 0;
        }
        
        p {
            font-size: 10px;
            line-height: 1.6;
            margin: 0 0 12px 0;
        }
        
        .section {
            margin-bottom: 12px;
        }
        
        .footer {
            font-size: 8px;
            flex-direction: column;
            gap: 8px;
            text-align: center;
        }
    }

    /* Tablettes - 481px à 768px */
    @media (min-width: 481px) and (max-width: 768px) {
        body > *:not(.navbar) {
            zoom: 90%;
        }
        
        .page {
            padding: 18px;
        }
        
        .frame {
            grid-template-columns: 1fr;
            gap: 18px;
        }
        
        .panel {
            padding: 16px;
        }
        
        .panel-title {
            font-size: 10px;
        }
        
        .art img {
            max-width: 200px;
        }
        
        h1, h2 {
            font-size: 16px;
        }
        
        p {
            font-size: 11px;
        }
    }

    /* Desktop - 769px à 1024px */
    @media (min-width: 769px) and (max-width: 1024px) {
        body > *:not(.navbar) {
            zoom: 95%;
        }
        
        .frame {
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .panel {
            padding: 18px;
        }
        
        .art img {
            max-width: 240px;
        }
    }

    /* Large Desktop - 1025px et plus */
    @media (min-width: 1025px) {
        body > *:not(.navbar) {
            zoom: 100%;
        }
        
        .frame {
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .panel {
            padding: 20px;
            min-height: 520px;
        }
        
        .art img {
            max-width: 280px;
        }
    }

    /* Optimisations pour les très petits écrans */
    @media (max-width: 320px) {
        body > *:not(.navbar) {
            zoom: 75%;
        }
        
        .panel-title {
            font-size: 8px;
        }
        
        h1, h2 {
            font-size: 12px;
        }
        
        p {
            font-size: 9px;
        }
    }

    /* Optimisations pour les très grands écrans */
    @media (min-width: 1440px) {
        .frame {
            max-width: 1400px;
        }
        
        .panel {
            min-height: 600px;
        }
    }

    /* Mode paysage pour mobile */
    @media (max-width: 768px) and (orientation: landscape) {
        body {
            padding-top: 20px;
        }
        
        .panel {
            min-height: 250px;
        }
        
        .art img {
            max-width: 120px;
        }
    }

    /* Accessibilité */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }

    @media (max-width: 900px) {
      .frame {
        grid-template-columns: 1fr;
      }
    }
    /* Les styles de la barre de navigation sont maintenant dans Home.css */